@charset "UTF-8";
/* CSS Document */

block-section {
  .display: flex; /* Use flexbox to arrange items side by side */
  justify-content: space-around; /* Distribute space between items */
  align-items: center; /* Vertically center items */
  padding: 10px;
  background-color: #f2f2f2; /* Optional background color */
}

.block-item {
  text-align: center; /* Center text within each item */
  padding: 10px;
  border: 1px solid #ddd; /* Optional border */
  border-radius: 5px; /* Optional rounded corners */
  width:100%; /* Adjust width as needed */
}

